home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 051-075 / disk_054 / ispell / makefile < prev    next >
Makefile  |  1992-05-06  |  461b  |  24 lines

  1. # -*- Mode: Text -*-
  2.  
  3. CFLAGS =    -dAMIGA -dLATTICE
  4. OBJ =        ispell.o term.o good.o lookup.o hash.o tree.o stat.o access.o
  5. CC =        dh0:lattice/c/lc
  6. LD =        dh0:lattice/c/blink
  7.  
  8. .c.o:
  9.         $(CC) $(CFLAGS) -o$@ $*.c
  10.  
  11. all:        buildhash ispell ispell.hash
  12.  
  13. ispell.hash:    buildhash dict.191
  14.         buildhash
  15.  
  16. buildhash:    buildhash.o hash.o stat.o
  17.         $(LD) with buildhash.lnk
  18.  
  19. ispell:        $(OBJ)
  20.         $(LD) with ispell.lnk
  21.  
  22. $(OBJ) :    ispell.h stat.h types.h
  23. buildhash.o :    ispell.h stat.h types.h
  24.